The Scale Of Sacred SoundsBased on the Sacred Sound Scale
How to use it:
This indicator is designed to capture the inferred behavior of traders and investors by using two groups of averages.
Meant for longer trades and trend indicator.
Used on any timescale as needed.
Can trade on long or short where the slow MA crosses fast Ma or where the Slow MA compresses and flips open again.
Follow the trend to the end - pot of gold at the end of the rainbow :-)
References:
Based on Daryl Guppy GMMA and
www.guppytraders.com
Read more at:
whatmusicreallyis.com
There is one tuning in which the frequencies 432, 528, 424 and 440 Hz can peacefully coexist. The scale has 32+1 pure harmonic tones and the reference frequency of 256 Hz. It comes from the Natural Ascending Series of Harmonics 32 to 64 of the 8 Hz Fundamental Tone, and represents its 6th double. I call this tuning The Scale of Sacred Sounds.
Representation using ancient Sumerian/Babylonian/Vedic math:
32; 33; 34; 35; 36; 37; 38; 39; 40; 41; 42; 43; 44; 45; 46; 47; 48; 49; 50; 51; 52; 53; 54; 55; 56; 57; 58; 59; 60; 61; 62; 63; 64
Representation using musical ratios:
1/1; 33/32; 17/16; 35/32; 9/8; 37/32; 19/16; 39/32; 5/4; 41/32; 21/16; 43/32; 11/8; 45/32; 23/16; 47/32; 3/2; 49/32; 25/16; 51/32; 13/8; 53/32; 27/16; 55/32; 7/4; 57/32; 29/16; 59/32; 15/8; 61/32; 31/16; 63/32; 2/1
The math for deriving one of the above series from the other is simple. Divide all numbers from the ancient series by the first, then simplify the fractions. Conversely, the series of ratios can be turned into the series of integers by calculating their least common denominator (the smallest whole number that is a multiple of all numbers under the fraction bar) and discarding it.
Logarithmic representation using musical constants (definition given further down):
0,000; 30,772; 60,625; 89,612; 117,783; 145,182; 171,850; 197,826; 223,144; 247,836; 271,934; 295,464; 318,454; 340,927; 362,905; 384,412; 405,465; 426,084; 446,287; 466,090; 485,508; 504,556; 523,248; 541,597; 559,616; 577,315; 594,707; 611,802; 628,609; 645,138; 661,398; 677,399; 693,147
Pesquisar nos scripts por "ma cross"
Fc - 8 x Sma/Ema/Wma/Rma(optional) & cross & close>MaChoose 8 different Ma(optional)
Strategy ;
- MA Cross
- Close > MA
- Increase fast MA
MA Ribbon HA* Inspired by Krypt's and Madrid's Ribbon
* Supplemental to bullish or bearish trend confirmations with Heikin Ashi candles (e.g. 10/20 MA cross)
* Default of: MA 5-55, 100 and 200
* Ability to switch between Simple vs Exponential MAs
You may switch color gradient by using this tool,
www.perbang.dk
Hope this helps. Please do let me know if you know how to script the wishlist below =)
Thanks!
---
Wishlist/to do next:
1. Be able to do this color change on counter-trend by implementing this script from Madrid's:
leadMAColor = change(ma05)>=0 and ma05>ma100 ? lime
: change(ma05)<0 and ma05>ma100 ? maroon
: change(ma05)<=0 and ma05=0 and ma05
change(ma)>=0 and ma05>maRef ? lime
: change(ma)<0 and ma05>maRef ? maroon
: change(ma)<=0 and ma05=0 and ma05
na(src ) ? na : src
...
price = dropn(src, dropCandles)
3. Be able to update line thickness of E/MA 10 & 20, as well as their colors.
4. A way to input two HEX colors and automatically update the ribbon lines to have those color gradient.
Candlestick normalizer + MA's Crossing SignalingWell, after 25 tries I finally did it ._.
Here is the candlestick normalizer I was trying to achieve. In this way you can do a fast and not biased by price candlestick analysis, for example to catch engulfish and doji's on the go ;)
I also added a MAs crossing-over signal I optimized.
Btw, I will try to add volume signaling on this indicator. I had been thinking in 2 options:
1) Maybe as a colour/unfilled bar when volume exceed average
2) Represent the volume on the width of the candlestick.
What do you prefer? Let me know.
I hope you enjoy it!
Phi it.
RedK Compound Ratio Moving Average (CoRa_Wave)
Compound Ratio Weighted Average (CoRa_Wave) is a moving average where the weights increase in a "logarithmically linear" way - from the furthest point in the data to the current point - the formula to calculate these weights work in a similar way to how "compound ratio" works - you start with an initial amount, then add a consistent "ratio of the cumulative prior sum" each period until you reach the end amount. The result is, the "step ratio" between the weights is consistent - This is not the case with linear-weights moving average (WMA), or EMA
- for example, if you consider a Weighted Moving Average (WMA) of length 5, the weights will be (from the furthest point towards the most current) 1, 2, 3, 4, 5 -- we can see that the ratio between these weights are inconsistent. in fact, the ratio between the 2 furthest points is 2:1, but the ratio between the most recent points is 5:4 -- the ratio is inconsistent, and in fact, more recent points are not getting the best weights they should/can get to counter-act the lag effect. Using the Compound ratio approach addresses that point.
a key advantage here is that we can significantly reduce the "tail weight" - which is "relatively" large in other MAs and would be main cause for lag - giving more weights to the most recent data points - and in a way that is consistent, reliable and easy to "code"
- the outcome is, a moving average line that suffers very little lag regardless of the length, and that can be relied on to track the price movements and swings closely.
other features:
===============
- An accelerator, or multiplier, has been added to further increase the "aggressiveness" of the moving average line, giving even more weights to the more recent points - the multiplier will have more effect between 1 and 5, then will have a diminishing effect after that - note that a multiplier of 0 (which effectively causes a comp. ratio of 0 to be applied) will produce a Simple Moving Average line :)
- We also added the ability to use an "automatic smoothing" mechanism, that user can over-ride by manually choosing how much smoothing is used. This gives more flexibility to how we can leverage this Moving Average in our charting.
- User can also select the Resolution and Source price for the CoRa_Wave. by default, they will be set to "same as chart" and hlc3
here are the formulas for our Compound Ratio moving average:
Compound Weight ratio r = (A/P)^1/t - 1
Weight at time t A = P(1 + r)^t
= Start_val * (1 + r) ^ index
index in the above formula is 0 for the furthest point out
Here's how CoRa_Wave compares to other common moving averages all set to the same length (20)
Proposed Usage
- CoRa_Wave can be used for any scenarios where we need a moving average that closely tracks the price, trend, swings with high responsiveness and little lag
- MA Cross-over scenarios - against another CoRa_Wave or any other MA
- below is a quick example scenario for how to utilize 2 CoRa_Wave lines of same length (one for open and one for closing price) to track swings and trends
- get as creative as you need :)
Code is commented - please feel free to leverage or customize further as you need.
👉 if you are interested in other moving averages i posted before, please check out the FiMA and the v_Wave ...
Volume Weighted MACD + x-SignalingThis is a script I remade from 2 previous TDuser's scripts.
Thanks community for sharing, I hope you find it useful.
φ!
Multi Indicators- MA, EMA, MA Cross, Parabolic SarMulti Indicators
- 3 Simple Moving Average
- 3 Exp Moving Average
- Cross of Moving Averages
- Parabolic SAR
[STUDY] CypherCore Trading Suite
Rerband. Now a STUDY script.
- RSI overlay indicators (diamond shapes)
- Most commonly used MA types( i.e. SMA , EMA , WMA , VWMA , ZEMA )
- Bands
- Price Action Indicator (color coordinated)
color code:
yellow --- inside bars (breakout)
blue --- outside bars (breakout)
green --- up pin bars (reversal)
red --- down pin bars (reversal)
fuchsia --- down shaved bars (selling pressure, selling likely to continue)
aqua --- up shaved bars (buying pressure, buying likely to continue)
- Reversal candlestick patterns (only a few for now)
- Two strategies for determining buy/sell signals
1. buy/sell signals determined by EMAs crossover (better for position or swing trades)
2. buy/sell signals determined by MAs crossover (better for scalping)
03/02/2017
- Switched to STUDY
- Fractals added
- Alerts now fully working
- New "Input" menu
Buy/Sell signals are NOT financial advice.
Moving Average Range Channels [DW]This study is an experiment based off the concept used in my Dynamic Range Channel indicator.
Rather than using a McGinley Dynamic, a moving average of your choice is used in this calculation.
There are eight different moving average types to choose from in this script:
- Kaufman's Adaptive Moving Average
- Geometric Moving Average
- Hull Moving Average
- Volume Weighted Moving Average
- Least Squares Moving Average
- Arnaud Legoux Moving Average
- Exponential Moving Average
- Simple Moving Average
For a more refined picture of volatility, I've added upper and lower extension channels. They are calculated by adding the upper half range to the channel high, and subtracting the lower half range from the channel low.
The new custom bar color scheme indicates trends, midline crosses, MA crosses, and overbought and oversold conditions.
Price Action Trading System v0.3 by JustUncleLThis is an updated and improved version of my "Price Action Trading strategy". I have added two extra optional filters, one is a trend direction filter based on the MACD slow EMA(17), blue line, and the other is a RSI(7) filter which works similarly to CCI(14) but slightly different dynamics (thank you to gianfranco60 for the suggestion). Also made a couple of corrections:
- input for lenLower minval=1 should be maxval=-1
- one bar pullback did not reset trigger, missing some alerts
Some Notes about usage:
- this is an alert indicator not a signal generator, each alert is a strong trend continuance candidate,
but should be treated on it's own merits by looking at chart dynamics and market conditions.
- will work well on trending markets only.
- works best on the first alert after MACD cross over.
- don't take trades when MACD and signal are close together.
- don't trade when channel and slow MA are flat or close together or
chopper (yellow and blue MA cross over quickly over short period).
CVD with Dual MAprefered settings.
Cvd 5 seconds on 1 minute timeframe . this indicator also has moving averages . i prefer the 21 or 30 ema and the 90 or 120 ema for the other. smaller timeframe means you can see more cvd vs using 1 minute on 1 minute . the middle line acts as a definitive decision for a short because if price is also below vwap and is approaching the middle line it is more likely to go down, use the ma crosses to signal some buying momentum rising and they are the ema of the CVD not total raw volume . i use this also on 15 m but with the single cvd moving average . which is separate indicator because of some syntax error idk bro had to make a separate one for higher timeframe.
Wyckoff Schematic - Accumulation [TrendX_]Wyckoff Schematic 1 - Accumulation is an advanced Wyckoff method tool on TradingView, designed to automate the identification of critical phases and price structures within the Wyckoff Accumulation Schematic. By detecting key events such as SC (Selling Climax), AR (Automatic Rally), Spring, and SOS (Sign of Strength), this tool helps traders visualize institutional accumulation patterns, anticipate trend reversals, and identify potential entry points aligned with the Wyckoff model—all without requiring hours of manual monitoring. The indicator dynamically labels key points, draws accumulation zones, and triggers alerts upon phase confirmations, reducing manual analysis and emotional bias.
💎 FEATURES
▶ Phase A: Bottom Identification
Auto-detects Selling Climax (SC), Automatic Rally (AR), and Secondary Test (ST).
Customizable initial trend detection: FTD (Follow-Through Day), Market Structure Shift, Triple MA Crossover, or Ichimoku Cloud.
▶ Phase B: Accumulation Range Formation
Identifies SOS(b) and ST(b) in Phase B
Customizable sweep levels for ST detection: previous SC / ST(a) / Fibonacci retracement levels of AR & SC.
▶ Phase C: Accumulation Confirmation
Flags Spring (false breakdown) and Test (confirmation of false breakdown).
▶ Phase D: Breakout Preparation
Detects SOS and BU/LPS for breakout confirmation.
▶ Visual Tools
Auto-draws accumulation range SC, AR, SOS(b) with real-time extensions.
Labels all critical events (SC, AR, ST, SOS, Spring, LPS) with text and markers.
Draws colored boxes for confirmed phases A, B and C, and triggers alerts for start of Markup with SOS and BU/LPS.
🔎 BREAKOUT
Phase A: Halting the Downtrend
▶ Key Events: SC, AR, ST(a).
▶ Functions:
SC: Marks panic selling, often with high volume.
AR: Sharp rebound after SC, reflecting short-term demand.
ST(a): Retest of SC lows to confirm weakening supply.
▶ Importance:
Phase A signals the end of a downtrend. The SC shows exhaustion, while the AR and ST confirm that sellers are losing control. Customizable trend detection (e.g., Ichimoku Cloud or FTD) ensures alignment with broader market context or your preference.
Phase B: Building the Accumulation Range
▶ Key events: SOS (Pha B), ST (Pha B).
▶ Functions:
SOS(b): A rally breaking above the AR, indicating strong demand.
ST(b): Retests of SC / ST(a) / Fib level to sweep liquidity (trap late sellers).
▶ Importance:
Phase B confirms the sideways range. SOS reflects institutional buying, while ST(b) traps sellers. Sweeping SC / ST(a) / Fib level would help identify false breakdowns.
Phase C: Spring & Test
▶ Key events: Spring (false breakdown), Test (confirmation).
▶ Functions:
Spring: A deliberate drop below Phase B support to eliminate weak traders.
Test: Retest of the Spring low to confirm sustained demand.
▶ Importance:
Phase C is the final "shakeout" to confirm accumulation. The Spring traps weak hands, while the Test validates support, confirming the institution has bought enough, signaling readiness for Markup.
Phase D: Breakout / Start of Markup
▶ Key events: SOS, BU/LPS.
▶ Functions:
SOS: A strong rally breaking above the accumulation range.
BU/LPS: Pullback after SOS to retest the breakout level.
▶ Importance:
Phase D confirms the start of a Markup. SOS shows demand overpowering supply, while BU/LPS offers low-risk entry points.
Accumulation Range & Visual Tools
▶ Accumulation Range: Drawn between SC (low) and AR (high), reflecting institutional buying activity.
▶ Labels/Boxes: Clear labels (SC, AR, ST, SOS, Spring, …) track each phase.
▶ Alerts: Notifies users when SOS or BU/LPS appears.
🛠️ USAGE
▶ Configuration
Phase A: Select trend detection method based on your preference and trading style (FTD, Market Structure, Triple MA, Mây Ichimoku).
Phase B: Adjust sweep levels (SC, ST(a), Fibonacci 61.8% của AR & SC).
▶ Interpretation
Bullish Trend: Confirmed Phase C (Spring + Test) followed by SOS in Phase D.
▶ Trading Strategy
Enter long positions at BU/LPS (Phase D) with volume or momentum confirmation.
Uses other Break-out strategy after SOS appear for Long Entry.
DISCLAIMER
This indicator is not financial advice, it can only help traders make better decisions. There are many factors and uncertainties that can affect the outcome of any endeavor, and no one can guarantee or predict with certainty what will occur. Therefore, one should always exercise caution and judgment when making decisions based on past performance.
Daily Moving Averages on Intraday ChartsThis moving average script displays the chosen 5 daily moving averages on intraday (minute) charts. It automatically adjusts the intervals to show the proper moving averages.
In a day there are 375 trading minutes from 9:15 AM to 3:30PM in Indian market. In 5 days there are 1875 minutes. For other markets adjust this data accordingly.
If 5DMA is chosen on a five minute chart the moving average will use 375 interval values (1875/5 = 375) of 5minute chart to calculate moving average. Same 5DMA on 25minute chart will use 75 interval values (1875/25 = 75).
On a 1minute chart the 5DMA plot will use 1875 interval values to arrive at the moving average.
Since tradingview only allows 5000 intervals to lookback, if a particular daily moving average on intraday chart needs more than 5000 candle data it won't be shown. E.g 200DMA on 5minute chart needs 15000 candles data to plot a correct 200DMA line. Anything less than that would give incorrect moving average and hence it won't be shown on the chart.
MA crossover for the first two MAs is provided. If you want to use that option, make sure you give the moving averages in the correct order.
You can enhance this script and use it in any way you please as long as you make it opensource on TradingView. Feedback and improvement suggestions are welcome.
Special thanks to @JohnMuchow for his moving averages script for all timeframes.
Three ma cross alertThis indicator displays three moving averages and can set alarms.
The default values for the three moving averages are set to 20,35,60, which can be changed by the user.
It is based on the idea of considering the moving average as an up-trend when it is in a positive arrangement and a down-trend when it is in a reverse arrangement.
If the candle reaches each moving average when the moving average is in a positive arrangement, it is considered a price adjustment
Therefore when the candles touch each line with the ma in the same arrangement, an alarm occurs.
The alarm reference time zone is set by 1D default, , and can be modified from the settings.
You can use it when you want to see the simple 3 moving averages without an alarm.
The alarm occurs before the closing price of the candle is closed in real time.
If there is any improvement, please contact us
Thanks
Liquidity Weighted Moving Averages [AlgoAlpha]Description:
The Liquidity Weighted Moving Averages by AlgoAlpha is a unique approach to identifying underlying trends in the market by looking at candle bars with the highest level of liquidity. This script offers a modified version of the classical MA crossover indicator that aims to be less noisy by using liquidity to determine the true fair value of price and where it should place more emphasis on when calculating the average.
Rationale:
It is common knowledge that liquidity makes it harder for market participants to move the price of assets, using this logic, we can determine the coincident liquidity of each bar by looking at the volume divided by the distance between the opening and closing price of that bar. If there is a higher volume but the opening and closing prices are near each other, this means that there was a high level of liquidity in that bar. We then use standard deviations to filter out high spikes of liquidity and record the closing prices on those bars. An average is then applied to these recorded prices only instead of taking the average of every single bar to avoid including outliers in the data processing.
Key features:
Customizable:
Fast Length - the period of the fast-moving average
Slow Length - the period of the slow-moving average
Outlier Threshold Length - the period of the outlier processing algorithm to detect spikes in liquidity
Significant Noise reduction from outliers:
TTP Green/Red Consecutive CandlesThis indicator counts consecutive green/red candles offering some basic statistics and signals/alerts.
Features
- Counts consecutive green/red candles in an oscillator chart
- Moving average of the counting helps spotting when the consecutive candles are away from the mean. MA length and multiplier to adjust the signal sensitivity.
- Thresholds can be set to backtest and send alerts on any number of arbitrary consecutive candles of the same color.
- All time highs: the indicator keeps track of when the maximum has been reached
- Distribution data: the number of times each number of consecutive color candles has been reached is offered
Signals
- Threshold signal triggers when the number of candles of the same color is above the specified threshold.
- MA cross signal triggers when the number of candles of the same color is above the MA.
Brute Force [TTF]The Brute Force indicator
This indicator is based on spotting and highlighting a particular activity pattern involving 3 moving averages:
A fast moving average that will track closely with price while still smoothing out some price chop
A middle moving average to help gauge short-term momentum
A slow moving average to help identify longer-term trends and potentially serve to also guide directional bias
A Time-Segmented Volume (TSV) indicator has also been incorporated to assist in finding more exact potential entry points based on volume change relative to a baseline. Since it may take a couple of candles for the TSV to "catch up" with our specific moving average pattern, we have also implemented a "delay" mechanism to all ow the moving average signal element trigger to remain valid for a configurable number of additional candles to see if the TSV aligns to confirm. If it does and all conditions are met, a rocket symbol (🚀) will be printed on the chart.
In addition to alerts aligning with the 🚀 symbol printing, additional alerts have been implemented to include:
Fast MA Cross Over/Under Mid MA
Price Close Above/Below Slow MA
Updates made after initial publication based on user feedback:
Added traditional alert conditions
Added the ability to configure the new style of dynamic alerts
Added a user-configurable option to allow the indicator signals to repaint on real-time data*
Added the ability to change the signal symbol style, size, shape, and color
Added tooltips to all indicator settings to help users better understand how the affect the indicator operation and how to update them if desired
Updated the dynamic/script-native alerts to be able to fire before candle close if "Allow Repainting" is selected and the alert configuration is set as "once per bar"*
Added default settings notes to indicator tool-tips
* Note: While allowing repainting may allow for some slightly earlier alerts/signals, there will be no way to guarantee that any signal will remain valid, so users must wait for the candle close to confirm the signal is still present.
We have decided to make this indicator freely available to the public in the hopes that people will find it useful as part of a trading strategy. Please feel free to provide constructive suggestions or feedback you may have!
Two MA Signal IndicatorThis Signal Indicator that emits a signal based on two MAs crossover/crossunder. It is designed to be used as an External Input for "Template Trailing Strategy" to verify the correctness of the External Deal Condition Mode of the aforementioned script and the Internal Strategy logic. Also, this script is a simple example on how to create custom signal indicators that can be "pugged" to the "Template Trailing Strategy" and get all the features this strategy script can provide!
ULTIMATE CANDLESTICK FINDER (Pullback/Rallys/Hammers/Dojis) + MATodays scripts is based on my Pullback And Rally Candles with other meaningful candles such as Hammers and Dojis.
You can choose which Candles to show on the cart and if you want to candles to appear above or below a moving average.
If you follow my work, you may recognise some of these candles which I'm about to show you however these candles are 1) more refined and 2) has moving average filters.
Ive included a D,6H,1H Candle in this script as on different timeframes - each swing low on average has a different amount of bars within the swing low / swing high so the DPB and RD will only work on the Daily
//Pullback candle
This candle is very powerful when used with simple Price Action such as Market Structure//Demand zones and support zones. (((((WORKS BEST IN UPTRENDS AND BOTTOM OF RANGES)))))
Ive included a D,6H,1H Pullback Candle in this script as on different timeframes - each swing low on average has a different amount of bars within the swing low so the DPB will only work on the Daily
//DAILY PULLBACK (Swing Traders)
//4H PULLBACK (Swing Traders)
- this signal will produce more signals due to the swing low filter on the 4H
//1H PULLBACK
- this signal has been refined due to too many candle displaying in weak areas
!!!IF YOU DONT WANT TO USE PULLBACKS DURING DOWNTRENDS THEN USE THE EMA FILTER TO TURN OFF THE PULLBACKS WHEN PRICE IS BELOW THE MOVING AVERAGE!!!
//Rally candle (My personal Favourite) (((((WORKS BEST IN DOWNTRENDS AND TOP OF RANGES)))))
This candle is very powerful when used with simple Price Action such as Market Structure//Supply zones and Resistance zones.
//DAILY RALLY(Swing Traders)
//4H RALLY(Swing Traders)
- this signal will produce more signals due to the swing high filter on the 4H
!!!IF YOU DONT WANT TO USE RALLIES DURING UPTRENDSTHEN USE THE EMA FILTER TO TURN OFF THE RALLIES WHEN PRICE IS ABOVE THE MOVING AVERAGE!!!
//POWERFUL DOJIS (INDECISION)
We look for indecision in key areas to see if momentum is shifting. When combined with Pullbacks or Rallys - this will enhance the odds of a probably area.
//HAMMERS
//MOVING AVERAGES
Short EMA = 50
Long EMA = 200
This filter can be used when the market is trending - look out for rejections off the moving averages
Also you can chance the Short And Long EMA to choose which MA cross you want to use
ALSO ALL THE CANDLES HAVE A ALERT CONDITIONS WHICH YOU CAN ACCESS - THIS WILL ALERT ANY CANDLE YOU CHOOSE
Please leave a like/comment on this post as this is much appreciated....
Vtrend MAcross BarColorThis script is an MA crossover using the 10 and 38 EMAs for long and short signals, combined with barcolor highlights to help identify for trend purposes.
What makes it unique are the reversal signals based on candle type, support and resistance levels, key level opens (daily,weekly,monthly,yearly)
Money Flow Index (double) by CoinStaghey Piners community,
this is an iteration of inbuilt MFI script, with two MFIs of different lengths and one Moving Average which is dependent on MFI 1.
I find it useful to see the trend of longer MFI period, which tells me what direction to trade. On shorter period MFI I'm looking at Oversold or Overbought zones - while quicker MFI index is there, I'm looking to Buy/Sell, depending on trend.
Alternatively, you can use also MFI1 and MA crossovers to spot potential entries.
It seems like a good tool for crypto markets on any timeframes - from 5min, to 4h.
Financial Astrology Crypto ML Daily TrendThis daily trend indicator is based on financial astrology cycles detected with advanced machine learning techniques for the crypto-currencies research portfolio: ADA, BAT, BNB, BTC, DASH, EOS, ETC, ETH, LINK, LTC, XLM, XMR, XRP, ZEC and ZRX. The daily price trend is forecasted through this planets cycles (angular aspects, speed, declination), fast ones are based on Moon, Mercury, Venus and Sun and Mid term cycles are based on Mars, Vesta and Ceres. The combination of all this cycles produce a daily price trend prediction that is encoded into a PineScript array using binary format "0 or 1" that represent sell and buy signals respectively. The indicator provides signals since 2021-01-01 to 2022-12-31, the past months signals purpose is to support backtesting of the indicator combined with other technical indicator entries like MAs, RSI or Stochastic. For future predictions besides 2022 a machine learning models re-train phase will be required.
The resolution of this indicator is 1D, you can tune a parameter where you can determine how many future bars of daily trend are plotted and adjust an hours shift to anticipate future signals into current bar in order to produce a leading indicator effect to anticipate the trend changes with some hours of anticipation. Combined with technical analysis indicators this daily trend is very powerful because can help to produce approximately 60% of profitable signals based on the backtesting results. You can look at our open source Github repositories to validate accuracy using the backtesting strategies we have implemented in Jesse Crypto Trading Framework as proof of concept of the predictive potential of this indicator. Alternatively, we have implemented a PineScript strategy that use this indicator, just consider that we are pending to do signals update to the period July 2021 to December 2022: This strategy have accumulated more than 110 likes and many traders have validated the predictive power of Financial Astrology.
DISCLAIMER: This indicator is experimental and don’t provide financial or investment advice, the main purpose is to demonstrate the predictive power of financial astrology. Any allocation of funds following the documented machine learning model prediction is a high-risk endeavour and it’s the users responsibility to practice healthy risk management according to your situation.